/* ************************************************* */

/* Set the size of the div element that contains the map */
#map {
  height: 750px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
}



/* *******************Basic Stuff******************* */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
		background-image: url("Images/Eagle over village mountains sunset.jpg");
		background-size: 2000px 1000px;
    background-repeat: no-repeat;
		overflow-y: scroll;
}

header{
	color: Black;
	font-size: 100%;
  font-weight: bold;
	background-color: rgb(255,215,0);
	border-bottom: 1px solid black;
	text-align: center;
}

/* ******************************************************************************************* */
/* *******************Main control box - setting the location of the items******************* */
.container{
	border: 1px solid red;
	display: grid;
	grid-template-columns: repeat(24, 1fr);

	grid-auto-rows: 75px;
	grid-row-gap: 10px;
	grid-column-gap: 10px;
	padding: 10px;
}

.FirstIntro {
	grid-column: 1 / 24;
  grid-row: 1/3;
	border: 1px dotted blue;
}

.HeadingBar {
	grid-column: 1 / 20;
  grid-row: 3/4;
	border: 1px solid yellow;
}

.MapSection {
	grid-column: 1 / 20;
  grid-row: 4/12;
	border: 1px dotted white;
}
.SecondIntro {
	grid-column: 1 / 20;
  grid-row: 12/14;
	border: 1px solid green;
}

.SideNavBar {
	grid-column: 20 / 24;
  grid-row: 3/14;
	border: 1px solid green;
}

/* **************************************************************** */
/* *******************Adjusting individual lists******************* */
ul.Heading{
  border: 1px solid pink;
	list-style: none;
	margin-left: 0;
  padding-left: 0;
}

.Heading li {
  display: inline;
  padding: 0 50px 0 0;
}

.Information:first-of-type {
	color: DarkGoldenRod;
	padding-top: 20px;
	font-weight: bold;
}

.Information {
	padding: 0;
	margin: 0;
}

.SideBar{
	border: 1px dotted white;
}

.SideBar li{
	border: 1px solid white;
	display: flex;
	flex-direction: row;
	width: 15em;
	height: 4em;
	align-items: center;
	justify-content: center;
	
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 75px;
	
	background-color: rgb(218,165,32);
	border-top-right-radius: 10% 30%;
	border-top-left-radius: 10% 30%;
	border-bottom-right-radius: 10% 30%;
	border-bottom-left-radius: 10% 30%;
}
/* ************************************** */

